home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / rexx / domail.rexx < prev    next >
OS/2 REXX Batch file  |  1999-07-12  |  420b  |  29 lines

  1. /* Launch YAM (if not running) and receive and send msgs */
  2.  
  3. options results
  4. signal on break_c
  5.  
  6. /* run YAM */
  7.  
  8. if ~show( ports, "YAM") then do
  9.   say "Launching Yam..."
  10.   address command 'run <>nil:' 'YAM:YAM'
  11.   address command 'waitforport YAM'
  12. end
  13.  
  14. /* get mail */
  15.  
  16. say " + Getting mail..."
  17.   address YAM
  18.   mailcheck
  19.  
  20. /* send mail */
  21.  
  22. say " + sending all queued mail..."
  23.   setfolder 1
  24.   mailsendall
  25.   setfolder 0
  26.  
  27. exit
  28.  
  29.